home *** CD-ROM | disk | FTP | other *** search
- {=================================================
- Program: SysFile.Exe
- Version: 1.0
- Module: SysFile.dpr
- Author: Wayne Niddery
- CopyRight ⌐ 1995 Wayne Niddery and WinWright
- =================================================}
- program Sysfile;
-
- uses
- Forms,
- Sysfile1 in 'SYSFILE1.PAS' {Form1},
- Sysprot in 'SYSPROT.PAS' {ProtectDlg},
- Sysopts in 'SYSOPTS.PAS' {OptionsDlg},
- Sysabout in 'SYSABOUT.PAS' {AboutDlg},
- SysGlb in 'SYSGLB.PAS';
-
- {$R *.RES}
-
- begin
- Application.Title := 'SysFile';
- Application.HelpFile := 'sysfile.hlp';
- Application.CreateForm(TForm1, Form1);
- Application.CreateForm(TOptionsDlg, OptionsDlg);
- Application.CreateForm(TProtectDlg, ProtectDlg);
- Application.Run;
- end.
-